home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XQ WinNT RAS Options 3.xpl < prev    next >
Text File  |  2001-04-12  |  2KB  |  85 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="3"
  4. "UIPATH"="Network\RAS & DUN"
  5. "NAME"="Server Options"
  6. "VERSION"="1.06"
  7. "OSVERSION"="010101"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Auth. Attempts"
  10. "TEXT 2"="Auth. Time (sec)"
  11. "TEXT 3"="Auto Discon. (min)"
  12. "DESCRIPTION 1"="The first option controls how often a user connecting to this server is allowed to try to authenticate before the connection is closed. Valid values are 1 to 10 (Default is 2)."
  13. "DESCRIPTION 2"="The second option controls how long the user is allowed to authenticate before the connection is closed. This value is in seconds; the range is from 20 seconds to 600 seconds (Default is 120)."
  14. "DESCRIPTION 3"="The third options controls after how many minutes inactivity the connection should be automatically closed. The default values is 20 minutes."
  15. "AUTHOR"="Xteq Systems"
  16. "CONTACTURL"="http://www.xteq.com"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"=" "
  19. "COMMENT 2"="Thanks to CptSiskoX for his help!"
  20.  
  21.  
  22. sV1="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteAccess\Parameters\AuthenticateRetries"
  23. sV2="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteAccess\Parameters\AuthenticateTime"
  24. sV3="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteAccess\Parameters\AutoDisconnect"
  25.  
  26. Sub Plugin_Initialize 
  27.     i=RegReadValue(sV1)
  28.     SetUIElement 1,i
  29.  
  30.     i=RegReadValue(sV2)
  31.     SetUIElement 2,i
  32.  
  33.     i=RegReadValue(sV3)
  34.     SetUIElement 3,i
  35. End Sub
  36.  
  37. Sub Plugin_CheckData(ElementIndex)
  38. End Sub
  39.  
  40. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  41.  i=GetUIElement(1)
  42.  if i<1 or i>10 then
  43.     Call MsgError("Please enter a value between 1 and 10")
  44.  else
  45.     if i="" then
  46.        'Delete Value   
  47.        i=RegReadValue(sV1)
  48.        if IsEmpty(i)=false then 
  49.           Call RegDeleteValue(sV1)
  50.        end if
  51.     else
  52.        'Set Value
  53.        Call RegWriteValue(sV1,i,2)
  54.     end if
  55. end if
  56.  
  57.  
  58.   
  59.  i=GetUIElement(2)
  60.  if i<20 or i>600 then
  61.     Call MsgError("Please enter a value between 20 and 600")
  62.  else
  63.     if i="" then
  64.        'Delete Value   
  65.        i=RegReadValue(sV2)
  66.        if IsEmpty(i)=false then 
  67.           Call RegDeleteValue(sV2)
  68.        end if
  69.     else
  70.        'Set Value
  71.        Call RegWriteValue(sV2,i,2)
  72.     end if
  73.  end if
  74.  
  75.  
  76.  i=GetUIElement(3)
  77.  'Set Value
  78.  Call RegWriteValue(sV3,i,2)
  79.  
  80.  Call Restart
  81. End Sub
  82.  
  83. Sub Plugin_Terminate 
  84. End Sub
  85.